home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Term / Extras / Source / gtlayout-source.lha / gtlayout_data.c next >
C/C++ Source or Header  |  1996-08-22  |  814b  |  42 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1996 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=8
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #ifdef LINK_LIB
  15. extern struct ExecBase    *SysBase;
  16. #else
  17. struct ExecBase    *SysBase;
  18. #endif    // LINK_LIB
  19.  
  20. struct Library        *IntuitionBase;
  21. struct GfxBase        *GfxBase;
  22. struct Library        *UtilityBase;
  23. struct Library        *GadToolsBase;
  24. struct Library        *KeymapBase;
  25. struct LocaleBase    *LocaleBase;
  26. struct Locale        *LTP_Locale;
  27. struct SignalSemaphore     LTP_LockSemaphore;
  28. struct MinList         LTP_LockList;
  29. struct IClass        *LTP_ImageClass,
  30.             *LTP_LevelClass,
  31.             *LTP_PopupClass,
  32.             *LTP_TabClass;
  33. struct MinList         LTP_EmptyList;
  34.  
  35. #ifdef DO_PICKSHORTCUTS
  36. UBYTE            *LTP_Keys[2];
  37. struct SignalSemaphore     LTP_KeySemaphore;
  38. #endif
  39.  
  40. BOOLEAN             V39,
  41.              V40;
  42.